home *** CD-ROM | disk | FTP | other *** search
/ Ultimedia 1 / Ultimedia 1.iso / tools / sonstiges / easysound / easysound.h < prev    next >
C/C++ Source or Header  |  1994-08-05  |  829b  |  32 lines

  1. #ifndef EASYSOUND_H
  2. #define EASYSOUND_H
  3.  
  4. #ifndef EXEC_TYPES_H
  5. #include <exec/types.h>
  6. #endif /* EXEX_TYPES_H */
  7.  
  8. /* 
  9.  * Sound channels:
  10.  */
  11. #define L0         0 // Left  0
  12. #define R0         1 // Right 0
  13. #define R1         2 // Left  1
  14. #define L1         3 // Right 1
  15.  
  16. #define NONSTOP       0 // Repeat the sound over and over and ...
  17. #define ONCE          1 // Play the sample only once
  18. #define MAXVOL       64 // Maximal Volume
  19. #define MINVOL        0 // Minimal Volume
  20. #define DONT_WAIT     0 // Do _not_ wait 'til the sound has finished
  21. #define WAIT          1 // Wait 'til the sound has finished
  22.  
  23. struct SoundInfo {
  24.     BYTE *SoundBuffer;  // Buffer to hold the waveform
  25.     UWORD RecordRate;   // Record rate
  26.     ULONG FileLength;   // Length of wave
  27.     UBYTE channel_bit;  // Channel to use
  28. };
  29.  
  30. #endif /* EASYSOUND_H */
  31.  
  32.